home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50b Issue 142 (CD142b) (August 1998).iso / handson / CPPBuild / STEP1 / UNIT1.H < prev   
Encoding:
C/C++ Source or Header  |  1998-05-06  |  800 b   |  24 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:    // IDE-managed Components
  13.     TButton *Add;
  14.     TButton *Remove;
  15.     TMemo *Memo1;
  16. private:    // User declarations
  17. public:        // User declarations
  18.     __fastcall TForm1(TComponent* Owner);
  19. };
  20. //---------------------------------------------------------------------------
  21. extern TForm1 *Form1;
  22. //---------------------------------------------------------------------------
  23. #endif
  24.